home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / grafik / superviewel / arexx-scripts / convertfile.rx next >
Text File  |  1995-08-02  |  783b  |  40 lines

  1. /*
  2.    $VER: ConvertFile.rx V4.53 (1.4.95)
  3.    © 1993-95 by Andreas R. Kleinert
  4.  
  5.    This script demonstrates loading, saving (converting) and
  6.    displaying files by using SuperView's ARexxPort.
  7.  
  8. */
  9.  
  10. address command
  11.  
  12. SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
  13.  
  14. say ""
  15. say "ARexx : SuperView has been started : Waiting three seconds ..."
  16.  
  17. wait 3
  18.  
  19. say "ARexx : Loading a GIF Graphics via the LOAD command"
  20. address 'SuperView.rx' "LOAD=/Bonus/SuperView.GIF"
  21.  
  22. say "ARexx : Saving Graphics as BMP V3.00"
  23.  
  24. address 'SuperView.rx' "SAVE_TYPE=BMP V3.00"
  25. address 'SuperView.rx' "SAVE=SuperView.bmp"
  26.  
  27. wait 3
  28.  
  29. say "ARexx : Load this BMP Gfx now for control"
  30.  
  31. address 'SuperView.rx' "SHOW=SuperView.bmp"
  32.  
  33. say "ARexx : O.K. : Let's quit !"
  34.  
  35. Wait 2
  36.  
  37. address 'SuperView.rx' "QUIT"
  38.  
  39. exit
  40.